.home-cell {
  position: relative;
  min-width: 300px;
}

.home-cell .home-cell-head {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-cell .home-cell-main {
  height: calc(100vh - 45%);
  position: absolute;
  top: 45%;
}

.home-cell-main .main-title {
  display: block;
  width: 180px;
  margin: auto;
  padding-bottom: 20px;
}

.home-cell-main .main-card {
  overflow: auto;
  padding: 0 20px 20px 20px;
}

.main-card .main-card-item {
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px #ddd;
  margin-top: 30px;
  cursor: pointer;
}

.main-card .main-card-item:after {
  content: '';
  display: block;
  clear: both;
}

.main-card-item .item-left {
  float: left;
  width: calc(100% - 90px);
}

.item-left>img {
  width: 100%;
  height: 100%;
}

.main-card-item .item-right {
  float: right;
  width: 80px;
  padding: 10px 10px 10px 0;
}

.main-card-item .item-arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 23px;
  background: #ff2e2e;
  border-radius: 15px;
  padding: 1px 15px;
}


.home-cell-main .main-card-item:first-child {
  margin-top: 0;
}

@media screen and (max-width: 340px) {
  .main-card-item .item-right {
    width: 50px;
  }

  .main-card-item .item-arrow {
    padding: 1px 5px;
    width: 15px;
  }
}